home *** CD-ROM | disk | FTP | other *** search
/ Pipe Mania!! / Pipe Mania!!.iso / install.bat < prev    next >
Encoding:
DOS Batch File  |  1995-04-20  |  360 b   |  17 lines

  1. @echo off
  2. if "%1" == "" goto no_dir
  3. md %1
  4. xcopy /s *.* %1
  5. if errorlevel 1 goto error
  6. goto done
  7. :no_dir
  8. echo Please give a directory to install Pipemania eg.
  9. echo.
  10. echo INSTALL C:\PIPE
  11. echo.
  12. goto done
  13. :error
  14. echo ERROR copying files. Please make sure the directory can be created
  15. echo and that there is enough disk space to copy the files
  16. :done
  17.